GrapeCity.Spreadsheet Assembly / GrapeCity.Spreadsheet Namespace / IArray<T> Interface / Item Property
An integer value indicates the index of the item.


In This Topic
Item Property (IArray<T>)
In This Topic
Gets the item at the specified index.
Syntax
'Declaration
 
Default Property Item( _
   ByVal index As Integer _
) As T
 
'Usage
 
Dim instance As IArray(Of T)
Dim index As Integer
Dim value As T
 
instance.Item(index) = value
 
value = instance.Item(index)

Parameters

index
An integer value indicates the index of the item.

Property Value

The T item.
See Also